home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / strstr.0 < prev    next >
Text File  |  1996-09-02  |  1KB  |  28 lines

  1.  
  2. STRSTR(3)                  UNIX Programmer's Manual                  STRSTR(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrssttrr - locate a substring in a string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      ssttrrssttrr(_c_o_n_s_t _c_h_a_r _*_b_i_g, _c_o_n_s_t _c_h_a_r _*_l_i_t_t_l_e)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The ssttrrssttrr() function locates the first occurrence of the null-terminated
  15.      string _l_i_t_t_l_e in the null-terminated string _b_i_g. If _l_i_t_t_l_e is the empty
  16.      string, ssttrrssttrr() returns _b_i_g; if _l_i_t_t_l_e occurs nowhere in _b_i_g, ssttrrssttrr()
  17.      returns NULL; otherwise ssttrrssttrr() returns a pointer to the first character
  18.      of the first occurrence of _l_i_t_t_l_e.
  19.  
  20. SSEEEE AALLSSOO
  21.      index(3),  memchr(3),  rindex(3),  strchr(3),  strcspn(3),  strpbrk(3),
  22.      strrchr(3),  strsep(3),  strspn(3),  strtok(3)
  23.  
  24. SSTTAANNDDAARRDDSS
  25.      The ssttrrssttrr() function conforms to ANSI C3.159-1989 (``ANSI C'').
  26.  
  27. BSD Experimental                 June 29, 1991                               1
  28.